home *** CD-ROM | disk | FTP | other *** search
/ Practical Web Pages 2004 September / PracticalWebPages-WPG13-09-2004-Coverdisc.iso / pc / Software / Toolkit / Sothink SWF Quicker 1.5 / data1.cab / Public_Files / Classes / PrintJob.as < prev    next >
Encoding:
Text File  |  2004-06-14  |  664 b   |  9 lines

  1. class PrintJob
  2. {
  3.  
  4.     function PrintJob()                                                  // Constructor. It creates a PrintJob object that you can use to print one or more pages.
  5.     function start()                                                     // It displays the operating system's print dialog boxes and starts spooling.
  6.     function addPage()                                                   // It sends the specified level or movie clip as a single page to the print spooler. 
  7.     function send()                                                      // It is used following PrintJob.start() and PrintJob.addPage() to send spooled pages to the printer.
  8. }
  9.